/* GLOBAL CSS */
/* Define global variables and font*/
:root {
    --bg-pink: #D3708F;
    --text-back: #7A253D;
    --text-base: white;
    --bg-base: black;
}

@font-face {
    font-family: cyberpunkWaifus;
    src: url(../CyberpunkWaifus.ttf);
}

/* Body and pink-lines used throughout "site pages" */
body {
    background-image: url("../realimages/lainSpace.png");
    background-color: var(--bg-base);
    color: var(--text-base);
    font-family: cyberpunkWaifus;
}

body a {
    color: var(--bg-pink);
    font-weight: bold;
}
body a:hover {
    color: red;
    font-weight: bold;
}

.pink-line {
    height: 2px;
    background-color: var(--bg-pink);
    width: 75%;
    margin: auto;
}

/* CHANGELOG CSS BEGINS HERE */
.changelogEntry {
    text-align: center;
}

.changeDate {
    background-color: var(--text-back);
    padding: 1px;
}

/* SITEMAP CSS BEGINS HERE */

/* MUSINGS CSS BEGINS HERE */
.thoughtsEntry {
    text-align: center;
}

.thoughtsEntryDate {
    background-color: var(--text-back);
    padding: 1px;
}

/* HOME/ABOUT CSS BEGINS HERE */
.centerHead {
    text-align: center;
    color: var(--text-base);
}

.pinkHighlight {
    background-color: var(--text-back);
    padding: 1px;
    text-align: center;
    width: 25%;
    margin: auto;
}